d23867ca8cdd1810b5b0c50d2a57505e9935c00c,kernel/kernel-util/src/main/java/org/sakaiproject/util/BaseDbBinarySingleStorage.java,BaseDbBinarySingleStorage,putDeleteResource,#String#String#String#Object[]#,664
Before Change
*/
public Edit putDeleteResource(String id, String uuid, String userId, Object[] others)
{
Entity entry = m_user.newResource(null, id, others);
// form the XML and SQL for the insert
Object blob = getBlob(entry);
After Change
// use the object being deleted
entry = m_storage.getResource(id);
}
if (entry == null) {
// failsafe to the old method
entry = m_user.newResource(null, id, others);
}
//Entity entry = m_user.newResource(null, id, others);